const runtime.expbits64

10 uses

	runtime (current package)
		softfloat64.go#L13: 	expbits64  uint = 11
		softfloat64.go#L14: 	bias64          = -1<<(expbits64-1) + 1
		softfloat64.go#L16: 	nan64 uint64 = (1<<expbits64-1)<<mantbits64 + 1<<(mantbits64-1) // quiet NaN, 0 payload
		softfloat64.go#L17: 	inf64 uint64 = (1<<expbits64 - 1) << mantbits64
		softfloat64.go#L18: 	neg64 uint64 = 1 << (expbits64 + mantbits64)
		softfloat64.go#L30: 	sign = f & (1 << (mantbits64 + expbits64))
		softfloat64.go#L32: 	exp = int(f>>mantbits64) & (1<<expbits64 - 1)
		softfloat64.go#L35: 	case 1<<expbits64 - 1:
		softfloat64.go#L118: 	if exp >= 1<<expbits64-1+bias64 {
		softfloat64.go#L255: 	return f ^ (1 << (mantbits64 + expbits64))